home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / misc / b1ff_wun.zip / MAKEFILE < prev    next >
Text File  |  1993-04-28  |  253b  |  15 lines

  1. #Makefile for b1ff
  2.  
  3. #Put in your favourite lex or C compiler here
  4. LEX = lex
  5. CC = cc
  6.  
  7. CLIBS = -ll
  8. CFLAGS = -O -s
  9. RM = /bin/rm
  10.  
  11. b1ff:  b1ff.l
  12.        $(LEX) b1ff.l
  13.        $(CC) $(CFLAGS) -o b1ff lex.yy.c $(CLIBS)
  14.        $(RM) -f lex.yy.c
  15.